max

pure function max(value: integer): integer

Returns the greater of this integer and another integer value; i.e. value if value is greater than this integer, or this integer otherwise.

Return

the greater of value and this integer.

Since

0.6.0

Parameters

value

the value to compare against this integer


pure function max(value: big_integer): big_integer

Returns the greater of this integer and a big_integer value; i.e. value if value is greater than this integer, or this integer otherwise.

Return

the greater of value and this integer.

Since

0.12.0

Parameters

value

the value to compare against this integer


pure function max(value: decimal): decimal

Returns the greater of this integer and a decimal value; i.e. value if value is greater than this integer, or this integer otherwise.

Return

the greater of value and this integer.

Since

0.6.0

Parameters

value

the value to compare against this integer